usage=Usage:\n PageGenerator urlListFile [savePath [skipFolder [proxyHost [proxyPort]]]]\nDownloads web pages specified in urlListFile to the folder named by\nsavePath. Uses proxyHost and proxyPort, if specified, as the proxy server\nfor accessing web sites outside your firewall.\nsavePath is the folder in which PageGenerator saves output files:\nif not specified, it uses PageGenerator's own folder.\nIf skipFolder is specified and numeric, PageGenerator shortens the URL by\nthat many levels (see EXAMPLES).\nWith extension ".txt", urlListFile contains space-delimited pairs of\nURLs and filenames:\n http://localhost/magazine/project.asp?RECORD_INDEX=3 project.index3.html\nWith any other extension, urlListFile contains an HTML table, with the URL\nin the leftmost column, the filename in the rightmost column, and URL\narguments specified in the intermediate columns (if any) -- in this case\nthe table's first row contains the URL arguments names.\n <table> <!-- 2-column version -->\n <tr><td>http://localhost/magazine/project.asp?RECORD_INDEX[Features]=3</td>\n <td>project.index3.html</td></tr>\n </table>\nor\n <table> <!-- argument-columns version -->\n <tr><td>(ignored)</td>\n <td>RECORD_INDEX[Features]</td> <!-- argument name -->\n <td>(ignored)</td></tr>\n <tr><td>http://localhost/magazine/project.asp\n </td><td>3</td> <!-- argument value -->\n <td>project.index3.html</td></tr>\n </table>\nEXAMPLES\n java PageGenerator c:\\temp\\urls.txt c:\\temp\\saved-site\nReads URLs, saves output files in c:\\temp\\saved\\saved-site (creates\nfolder if necessary).\n java PageGenerator http://myhost/my-list-page.asp c:\\temp\\saved-site\nReads a URLs from HTML dynamically generated by my-list-page.asp.\n java PageGenerator /tmp/urls.txt /tmp/saved-site\nUNIX (MacOS X) usage. If filenames contain spaces or other special\ncharacters, quote them: "/tmp/My Folder/urls.txt"\n java PageGenerator /tmp/urls.txt /tmp/saved-site 1\nAs above, but saves URLs like http://myhost/a/b/c.html as\n/tmp/saved-site/b/c.html, not /tmp/saved-site/a/b/c.html\n java PageGenerator /tmp/urls.txt /tmp/saved-site 0 myproxy 8080\nUses the proxy server http://myproxy:8080 to access URLs.\n
error=Error:
httpError=HTTP Error:
unexpectedError=Unexpected error occurred
wrongUrlFormat=Wrong URL format:
wrongParentPath=Wrong parent path
urlCount=URL count:
noQuotedHref=Warning: unquoted HREF is not supported
endQuoteNotFound=Warning: HREF's end quote not found
filesDownloaded=\u0020file(s) were downloaded
specifyNumber4skipFolder=Specify number for [skipFolder]